func runtime.fastrandn

12 uses

	runtime (current package)
		malloc.go#L1344: 	q := fastrandn(1<<randomBitCount) + 1
		malloc.go#L1362: 		return uintptr(fastrandn(uint32(2 * rate)))
		mbitmap.go#L986: 	if arenaIndex(x+size-1) != arenaIdx(h.arena) || (doubleCheck && fastrandn(2) == 0) {
		mgcpacer.go#L807: 		id := int32(fastrandn(uint32(gomaxprocs - 1)))
		os_linux.go#L650: 	spec.it_value.setNsec(1 + int64(fastrandn(uint32(1e9/hz))))
		proc.go#L5680: 	if randomizeScheduler && next && fastrandn(2) == 0 {
		proc.go#L5733: 			j := fastrandn(i + 1)
		proc.go#L5774: 			j := fastrandn(i + 1)
		select.go#L177: 		j := fastrandn(uint32(norder + 1))
		stubs.go#L153: func fastrandn(n uint32) uint32 {
		stubs.go#L160: func sync_fastrandn(n uint32) uint32 { return fastrandn(n) }
		symtab.go#L929: 				ci := fastrandn(uint32(len(cache.entries[x])))